home *** CD-ROM | disk | FTP | other *** search
/ Champak 146 / (Vol 146) Jan 07 2012.iso / Games / shark_attack_2.swf / scripts / DefineSprite_69 / frame_1 / DoAction.as
Encoding:
Text File  |  2012-01-07  |  267 b   |  8 lines

  1. x = _parent._x + _parent._parent._x;
  2. y = _parent._y + _parent._parent._y;
  3. if(x < _root.mascot._x + 20 && _root.mascot._x - 20 < x && y < _root.mascot._y + 40 && _root.mascot._y - 40 < y)
  4. {
  5.    _root.lives = _root.lives + 1;
  6.    _parent.gotoAndStop("collect");
  7. }
  8.